home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / gen_library / termios.c < prev    next >
C/C++ Source or Header  |  1995-05-28  |  5KB  |  255 lines

  1. /*-
  2.  * Copyright (c) 1989 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  */
  33.  
  34. #if defined(LIBC_SCCS) && !defined(lint)
  35. static char sccsid[] = "@(#)termios.c    5.9 (Berkeley) 5/20/91";
  36. #endif /* LIBC_SCCS and not lint */
  37.  
  38. #define KERNEL
  39. #include "ixemul.h"
  40. #include "kprintf.h"
  41.  
  42. #include <sys/types.h>
  43. #include <sys/errno.h>
  44. #undef KERNEL
  45. #include <sys/ioctl.h>
  46. #include <sys/tty.h>
  47. #define KERNEL    /* XXX - FREAD and FWRITE was ifdef'd KERNEL*/
  48. #include <sys/fcntl.h>
  49. #undef KERNEL
  50. #include <termios.h>
  51. #include <stdio.h>
  52. #include <unistd.h>
  53.  
  54. int
  55. tcgetattr(fd, t)
  56.     int fd;
  57.     struct termios *t;
  58. {
  59.  
  60.     return(ioctl(fd, TIOCGETA, t));
  61. }
  62.  
  63. int
  64. tcsetattr(fd, opt, t)
  65.     int fd, opt;
  66.     const struct termios *t;
  67. {
  68.     struct termios localterm;
  69.  
  70.     if (opt & TCSASOFT) {
  71.         localterm = *t;
  72.         localterm.c_cflag |= CIGNORE;
  73.         t = &localterm;
  74.         opt &= ~TCSASOFT;
  75.     }
  76.     if (opt == TCSANOW)
  77.         return (ioctl(fd, TIOCSETA, t));
  78.     else if (opt == TCSADRAIN)
  79.         return (ioctl(fd, TIOCSETAW, t));
  80.     return (ioctl(fd, TIOCSETAF, t));
  81. }
  82.  
  83. int
  84. #if __STDC__
  85. tcsetpgrp(int fd, pid_t pgrp)
  86. #else
  87. tcsetpgrp(fd, pgrp)
  88.     int fd;
  89.     pid_t pgrp;
  90. #endif
  91. {
  92.     int s;
  93.  
  94.     s = pgrp;
  95.     return(ioctl(fd, TIOCSPGRP, &s));
  96. }
  97.  
  98. pid_t
  99. tcgetpgrp(fd)
  100. {
  101.     int s;
  102.  
  103.     if (ioctl(fd, TIOCGPGRP, &s) < 0)
  104.         return((pid_t)-1);
  105.  
  106.     return((pid_t)s);
  107. }
  108.  
  109. speed_t
  110. cfgetospeed(t)
  111.     const struct termios *t;
  112. {
  113.  
  114.     return(t->c_ospeed);
  115. }
  116.  
  117. speed_t
  118. cfgetispeed(t)
  119.     const struct termios *t;
  120. {
  121.  
  122.     return(t->c_ispeed);
  123. }
  124.  
  125. int
  126. cfsetospeed(t, speed)
  127.     struct termios *t;
  128.     speed_t speed;
  129. {
  130.     t->c_ospeed = speed;
  131.  
  132.     return (0);
  133. }
  134.  
  135. int
  136. cfsetispeed(t, speed)
  137.     struct termios *t;
  138.     speed_t speed;
  139. {
  140.     t->c_ispeed = speed;
  141.  
  142.     return (0);
  143. }
  144.  
  145. void
  146. cfsetspeed(t, speed)
  147.     struct termios *t;
  148.     speed_t speed;
  149. {
  150.     t->c_ispeed = t->c_ospeed = speed;
  151. }
  152.  
  153. /*
  154.  * Make a pre-existing termios structure into "raw" mode:
  155.  * character-at-a-time mode with no characters interpreted,
  156.  * 8-bit data path.
  157.  */
  158. void
  159. cfmakeraw(t)
  160.     struct termios *t;
  161. {
  162.     t->c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
  163.     t->c_oflag &= ~OPOST;
  164.     t->c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
  165.     t->c_cflag &= ~(CSIZE|PARENB);
  166.     t->c_cflag |= CS8;
  167.     /* set MIN/TIME */
  168. }
  169.  
  170. int
  171. tcsendbreak(fd, len)
  172.     int fd, len;
  173. {
  174.     struct timeval sleepytime;
  175.  
  176.     sleepytime.tv_sec = 0;
  177.     sleepytime.tv_usec = 400000;
  178.     if (ioctl(fd, TIOCSBRK, 0) == -1)
  179.         return (-1);
  180.     select(0, 0, 0, 0, &sleepytime);
  181.     if (ioctl(fd, TIOCCBRK, 0) == -1)
  182.         return (-1);
  183.  
  184.     return (0);
  185. }
  186.  
  187. int
  188. tcdrain(fd)
  189.     int fd;
  190. {
  191.     if (ioctl(fd, TIOCDRAIN, 0) == -1)
  192.         return (-1);
  193.  
  194.     return (0);
  195. }
  196.  
  197. int
  198. tcflush(fd, which)
  199.     int fd, which;
  200. {
  201.     int com;
  202.  
  203.     switch (which) {
  204.     case TCIFLUSH:
  205.         com = FREAD;
  206.         break;
  207.     case TCOFLUSH:
  208.         com = FWRITE;
  209.         break;
  210.     case TCIOFLUSH:
  211.         com = FREAD | FWRITE;
  212.         break;
  213.     default:
  214.         errno = EINVAL;
  215.         KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  216.         return (-1);
  217.     }
  218.     if (ioctl(fd, TIOCFLUSH, &com) == -1)
  219.         return (-1);
  220.  
  221.     return (0);
  222. }
  223.  
  224. int
  225. tcflow(fd, action)
  226.     int fd, action;
  227. {
  228.     switch (action) {
  229.     case TCOOFF:
  230.         return (ioctl(fd, TIOCSTOP, 0));
  231.         break;
  232.     case TCOON:
  233.         return (ioctl(fd, TIOCSTART, 0));
  234.         break;
  235.     case TCIOFF:
  236.     case TCION: {        /* these posix functions are STUPID */
  237.         struct termios term;
  238.         unsigned char c;
  239.  
  240.         if (tcgetattr(fd, &term) == -1)
  241.             return (-1);
  242.         c = term.c_cc[action == TCIOFF ? VSTOP : VSTART];
  243.         if (c != _POSIX_VDISABLE && write(fd, &c, 1) == -1)
  244.             return (-1);
  245.         break;
  246.     }
  247.     default:
  248.         errno = EINVAL;
  249.         KPRINTF (("&errno = %lx, errno = %ld\n", &errno, errno));
  250.         return (-1);
  251.     }
  252.  
  253.     return (0);
  254. }
  255.